翻訳と辞書
Words near each other
・ Polythysana cinerascens
・ Polytmus
・ Polytoca
・ Polytolypa
・ Polytoma
・ Polytomella
・ Polytomella parva
・ Polytomous choice
・ Polytomous Rasch model
・ Polytomy
・ Polytonality
・ Polytope
・ Polytope compound
・ Polytope de Montréal
・ Polytope families
Polytope model
・ Polytrauma
・ Polytree
・ Polytremariidae
・ Polytremis
・ Polytremis discreta
・ Polytremis eltola
・ Polytremis lubricans
・ Polytremis pellucida
・ Polytrias
・ Polytrichaceae
・ Polytrichum
・ Polytrichum alpinum
・ Polytrichum commune
・ Polytrichum juniperinum


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Polytope model : ウィキペディア英語版
Polytope model

The polyhedral model (also called the polytope method) is a mathematical framework for loop nest optimization in program optimization. The polytope method treats each loop iteration within nested loops as lattice points inside mathematical objects called polytopes, performs affine transformations or more general non-affine transformations such as tiling on the polytopes, and then converts the transformed polytopes into equivalent, but optimized (depending on targeted optimization goal), loop nests through polyhedra scanning.
== Detailed example ==

The following C code implements a form of error-distribution dithering similar to Floyd–Steinberg dithering, but modified for pedagogical reasons. The two-dimensional array src contains h rows of w pixels, each pixel having a grayscale value between 0 and 255 inclusive. After the routine has finished, the output array dst will contain only pixels with value 0 or value 255. During the computation, each pixel's dithering error is collected by adding it back into the src array. (Notice that src and dst are both read and written during the computation; src is not read-only, and dst is not write-only.)
Each iteration of the inner loop modifies the values in src()() based on the values of src()(), src()(), and src()(). (The same dependencies apply to dst()(). For the purposes of loop skewing, we can think of src()() and dst()() as the same element.) We can illustrate the dependencies of src()() graphically, as in the diagram on the right.

}

|}
Performing the affine transformation (p,\, t) = (i,\, 2j+i) on the original dependency diagram gives us a new diagram, which is shown in the next image. We can then rewrite the code to loop on p and t instead of i and j, obtaining the following "skewed" routine.

}

|}

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Polytope model」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.